DataSource for Entity Framework in WPF
C1.Data Namespace / ClientView<T> Class / AsFiltered Method
A function to apply each element to test the condition.

In This Topic
    AsFiltered Method
    In This Topic
    Filters the view on the server side using a predicate.
    Syntax
    'Declaration
     
    Public Overridable Function AsFiltered( _
       ByVal predicate As Expression(Of Func(Of T,Boolean)) _
    ) As ClientView(Of T)
    public virtual ClientView<T> AsFiltered( 
       Expression<Func<T,bool>> predicate
    )

    Parameters

    predicate
    A function to apply each element to test the condition.

    Return Value

    A client view that contains elements of this view that satisfy the predicate.
    See Also